16119d5cacbe48cfb9e942ee9449c2a2841c7584,server/src/com/cloud/network/element/VirtualRouterElement.java,VirtualRouterElement,restart,#Network#ReservationContext#,133

Before Change


        
        Cluster cluster = _configMgr.getCluster(_hostDao.findById(host_id).getClusterId());
        dest = new DeployDestination(dc, null, cluster, null);
        implement(network, networkOffering, dest, context);
        return ret;
    }

After Change


        /* The cluster here is only used to determine hypervisor type, not the real deployment */
        Cluster cluster = _configMgr.getCluster(_hostDao.findById(host_id).getClusterId());
        dest = new DeployDestination(dc, null, cluster, null);
        return implement(network, networkOffering, dest, context);
    }

    @Override